fmt.fmtFlags.plus (field)
17 uses
fmt (current package)
format.go#L27: plus bool
format.go#L228: if negative || f.plus || f.space {
format.go#L307: } else if f.plus {
format.go#L454: if f.plus {
format.go#L482: if f.plus {
format.go#L505: if f.space && num[0] == '+' && !f.plus {
format.go#L514: if num[1] == 'N' && !f.space && !f.plus {
format.go#L580: if f.plus || num[0] != '+' {
print.go#L193: return p.fmt.plus || p.fmt.plusV
print.go#L475: oldPlus := p.fmt.plus
print.go#L479: p.fmt.plus = true
print.go#L482: p.fmt.plus = oldPlus
print.go#L1055: p.fmt.plus = true
print.go#L1074: p.fmt.plusV = p.fmt.plus
print.go#L1075: p.fmt.plus = false
print.go#L1172: p.fmt.plusV = p.fmt.plus
print.go#L1173: p.fmt.plus = false
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |